github.com/jackc/pgx/v5/internal/stmtcache.LRUCache.head (field)

9 uses

	github.com/jackc/pgx/v5/internal/stmtcache (current package)
		lru_cache.go#L17: 	head *lruNode
		lru_cache.go#L38: 		head:       head,
		lru_cache.go#L76: 	c.insertAfter(c.head, node)
		lru_cache.go#L97: 	for node := c.head.next; node != c.tail; {
		lru_cache.go#L106: 	c.head.next = c.tail
		lru_cache.go#L107: 	c.tail.prev = c.head
		lru_cache.go#L136: 	if node == c.head {
		lru_cache.go#L162: 	if node.prev == c.head {
		lru_cache.go#L166: 	c.insertAfter(c.head, node)